home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- HEAD>
- <TITLE>mouseover and mouseout</TITLE>
- </HEAD>
- <STYLE type="text/css">
- <!--
- H1 {color:green}
- -->
- </STYLE>
- <SCRIPT language ="javascript">
- <!--
- function changeColor() {
- head_0.style.color = "blue";
- head_0.style.fontStyle = "italic";
- }
- function changeColorBack() {
- head_0.style.color = "green";
- head_0.style.fontStyle = "normal";
- }
- //-->
- </SCRIPT>
- <BODY>
- <H1 id="head_0" onMouseover="changeColor()" nMouseout="changeColorBack()">
- This is green, except when the mouse points at it</H1>
- <P>This is some body text.</P>
- </BODY>
- </HTML>
-